home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mger.dir / 00028.ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  436 b   |  27 lines

  1. on mouseDown
  2.   global letgo, movielist
  3.   set the ink of sprite 13 to 4
  4.   updateStage()
  5.   if the doubleClick then
  6.     if count(movielist) >= 24 then
  7.       exit
  8.     end if
  9.     set the ink of sprite 13 to 4
  10.     updateStage()
  11.     set yu to the clickOn
  12.     addbar(yu)
  13.     updateStage()
  14.     exit
  15.   end if
  16.   set letgo to 2
  17. end
  18.  
  19. on mouseUp
  20.   global reset, letgo
  21.   if the doubleClick then
  22.     exit
  23.   end if
  24.   set letgo to 0
  25.   set reset to 1
  26. end
  27.